Opc.Ua.Core
LogError(Exception,String,Object[]) Method



Opc.Ua Namespace > Utils Class > LogError Method : LogError(Exception,String,Object[]) Method
The exception to log.
Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
An object array that contains zero or more objects to format.
Formats and writes an error log message.
Syntax
'Declaration
 
Public Overloads Shared Sub LogError( _
   ByVal exception As Exception, _
   ByVal message As String, _
   ByVal ParamArray args() As Object _
) 
'Usage
 
Dim exception As Exception
Dim message As String
Dim args() As Object
 
Utils.LogError(exception, message, args)
public static void LogError( 
   Exception exception,
   string message,
   params object[] args
)
public:
static void LogError( 
   Exception^ exception,
   String^ message,
   ... array<Object^>^ args
) 

Parameters

exception
The exception to log.
message
Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
args
An object array that contains zero or more objects to format.
Example
LogError(exception, "Error while processing request from {Address}", address)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Utils Class
Utils Members
Overload List